home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / egames__ / learn30.zip / LEVELS.BAT < prev    next >
DOS Batch File  |  1996-11-12  |  588b  |  22 lines

  1. echo off
  2. :over
  3. cls
  4. echo                       Pick which level to go to:
  5. echo                       --------------------------
  6. echo                           (1) Easy level 1
  7. echo                           (2) Medium level 2
  8. echo                       --------------------------
  9. echo            (3) Hard level 3 (you can't jump here until you register)
  10. echo            (4) Hard level 4 (you can't jump here until you register)
  11. echo                       --------------------------
  12. ask "(1) (2)" 12
  13. if errorlevel 2 goto two
  14. :1
  15. level1
  16. goto over
  17. :two
  18. level2
  19. goto over
  20.  
  21.  
  22.